import time

time.ctime()

def show_default(arg=time.ctime()):
    print(arg)


show_default()

show_default()

show_default()
